home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / fcfgw40s.zip / SELECTLE.H < prev    next >
C/C++ Source or Header  |  1996-04-17  |  840b  |  39 lines

  1. // SelectLevel.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSelectLevel dialog
  6.  
  7. class CSelectLevel : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CSelectLevel(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CSelectLevel)
  15.     enum { IDD = IDD_DIALOG_SELECT_LEVEL };
  16.     CButton    m_Match;
  17.     CSpinButtonCtrl    m_Spin;
  18.     UINT    m_Level;
  19.     int        m_MatchLevel;
  20.     //}}AFX_DATA
  21.  
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CSelectLevel)
  26.     protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. protected:
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CSelectLevel)
  35.     virtual BOOL OnInitDialog();
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.